ScxV6Server.FindObject Method
Locates a database object by its full name and returns an ScxV6Object object representing the object.
Parameters
- ObjectName
The full name of the object to find.
Remarks
Locates an object in the database via its full name. Returns nothing if the object cannot be found.
This example is written in VB.NET.
Dim Obj as ScxV6DBClient.ScxV6Object
Obj = Svr.FindObject( "MyObject" )
If Obj is nothing Then
MsgBox "Object not found"
End If